28f80e9d7a2410cfebf26a7f57cbced9f038ad93,app/src/main/java/com/juniperphoton/myersplash/service/BackgroundDownloadService.java,BackgroundDownloadService,onHandleIntent,#Intent#,31
Before Change
}
downloadImage(url, fileName);
NotificationUtil.showProgressNotification("MyerSplash", "Downloading...", 0, Uri.parse(url));
}
protected void downloadImage(final String url, final String fileName) {
After Change
}
} else {
String filePath = downloadImage(url, fileName);
NotificationUtil.showProgressNotification("MyerSplash", "Downloading...", 0, filePath, Uri.parse(url));
}
}